Change the Caps Lock warning to the more neutral "Caps Lock is on".
authorMatthias Clasen <mclasen@redhat.com>
Wed, 21 Jan 2009 21:15:19 +0000 (21:15 +0000)
committerMatthias Clasen <matthiasc@src.gnome.org>
Wed, 21 Jan 2009 21:15:19 +0000 (21:15 +0000)
009-01-21  Matthias Clasen  <mclasen@redhat.com>

        * gtk/gtkentry.c: Change the Caps Lock warning to the more
        neutral "Caps Lock is on". Requested by Wouter Bolsterlee

svn path=/trunk/; revision=22166

ChangeLog
gtk/gtkentry.c

index 5598c04737a350a030ccd724e413cbdb071fb8ef..f780863c9329255fcae20c21104dedf98839cbe5 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -6,6 +6,11 @@
        * gdk/win32/gdkcursor-win32.c (hcursor_from_type): Implement
        creating a GDK_BLANK_CURSOR.
 
+2009-01-21  Matthias Clasen  <mclasen@redhat.com>
+
+       * gtk/gtkentry.c: Change the Caps Lock warning to the more
+       neutral "Caps Lock is on". Requested by Wouter Bolsterlee
+
 2009-01-21  Matthias Clasen  <mclasen@redhat.com>
 
        Bug 568552 – gtk_combo + gtk entry in invisible mode takes 100% cpu
index cda22297d35d92319f6ba442de8b3f0123d2db49..e34020786a207b20bd6ae752d8483d6332d18630 100644 (file)
@@ -9598,7 +9598,7 @@ keymap_state_changed (GdkKeymap *keymap,
   if (!entry->visible && priv->caps_lock_warning)
     { 
       if (gdk_keymap_get_caps_lock_state (keymap))
-        text = _("You have the Caps Lock key on");
+        text = _("Caps Lock is on");
     }
 
   if (text)